home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 12
/
Cream of the Crop 12 (Part II)
/
Cream of the Crop 12 (Part II).iso
/
OS2
/
MEMSZ312.ZIP
/
SOURCE.ZIP
/
MODULE.H
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1994-01-19
|
299 b
|
16 lines
// Class MODULE: Encapsulates the load/unload logic for a OS/2 resource module.
#define INCL_BASE
#include <os2.h>
class Module
{
private:
HMODULE Handle ;
public:
Module ( PSZ Name = PSZ("") ) ;
~Module ( ) ;
HMODULE QueryHandle () { return ( Handle ) ; }
} ;